home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ IE URLTemplates.xpl < prev    next >
Text File  |  2004-04-08  |  1KB  |  47 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="5"
  4. "UIPATH"="Internet\Internet Explorer\URL Handling"
  5. "NAME"="Single Word URL Templates"
  6. "VERSION"="1.30"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Template 1"
  9. "TEXT 2"="Template 2"
  10. "TEXT 3"="Template 3"
  11. "TEXT 4"="Template 4"
  12. "TEXT 5"="Template 5"
  13. "DESCRIPTION 1"="IMPORTANT! This does only work for Internet Explorer 5.0 and below!"
  14. "DESCRIPTION 2"="Entering a simple word in the "Address" field of Internet Explorer causes it to try resolving the name using one of these templates."
  15. "DESCRIPTION 3"="For example, if you enter "AUTO", Internet Explorer first tries to find the site "www.AUTO.com", then "www.AUTO.edu" and so on."
  16. "DESCRIPTION 4"="Valid entries are in this format:   www.%s.nnn            (replace the "nnn" with anything).  Some possible choices are .mil, .gov, co.uk, and so on."
  17. "AUTHOR"="Xteq Systems"
  18. "CONTACTURL"="http://www.xteq.com"
  19. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  20. "COMMENT 1"=" "
  21.  
  22.  
  23. sPath="HKLM\Software\Microsoft\Internet Explorer\Main\UrlTemplate\"
  24. Sub Plugin_Initialize 
  25.  if RegPathExists(sPath) then
  26.   for l=1 to 5 
  27.    s=RegReadValue(sPath & l)
  28.    Call SetUIElement(l,s)
  29.   Next
  30.  else
  31.   Disable
  32.  end if
  33. End Sub
  34.  
  35. Sub Plugin_CheckData(ElementIndex)
  36. End Sub
  37.  
  38. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  39.  for l=1 to 5
  40.   s=GetUIElement(l)
  41.   Call RegWriteValue(sPath & l,s,1)
  42.  next
  43. End Sub
  44.  
  45. Sub Plugin_Terminate 
  46. End Sub
  47.